/* 
	The following information must not be removed:
	Awesome Box v2
	Written by: Paul Armstrong, Paul Armstrong Designs
	Site: http://paularmstrongdesigns.com
	Idea and some functions from "LightBox" http://www.huddletogether.com
	Example & Documentation: http://paularmstrongdesigns.com/awesome/box/
	Last Updated: Friday, February 2, 2007 at 12:31:10

	This work is licensed under a Creative Commons Attribution-ShareAlike 2.5 License
	http://creativecommons.org/licenses/by-sa/2.5/
	
	Required Yahoo! UI Files:
		* yahoo.js
		* dom.js
		* event.js
		* [ or: yahoo-dom-event.js ]
		* animation.js
		* [ or: animation-min.js ]
*/

-------------------------------
How to Use

Awesome Box is incredibly easy to use. In the <head> tag of your HTML pages, include the three included Javascript files and the included CSS file:

<script src="http://yui.yahooapis.com/2.2.0/build/yahoo-dom-event/yahoo-dom-event.js" type="text/javascript"></script>
<script src="http://yui.yahooapis.com/2.2.0/build/animation/animation-min.js" type="text/javascript"></script><script src="/path/to/awesomebox.js" type="text/javascript"></script>
<link rel="stylesheet" href="/css/awesomebox.css" type="text/css" media="all" />

-------------------------------

Now you will want to customize Awesome Box quickly:

1. Open awesomebox.js
2. Locate and modify the path to aBox-loading.gif (line 22)
3. If you are using Google Analytics:
	3a. Modify var siteUrl to match your domain (line 23)
	3b. Locate line 426, //urchinTracker(aPreload.src.split(siteURL)[1]); and remove the //

-------------------------------

Linking to Images

When you are using thumbnails to link to images, you will want the HTML to be in the following format:

<a rel="Slideshow Name" href="link/to/photo.jpg">
	<img src="link/to/thumb.jpg" title="Image Title" alt="Description Text" />
</a>

Note that the rel="" on the link is optional for slideshows.

Using standard text links:

<a rel="Slideshow Name"href="link/to/photo.jpg" title="Image Title">Description Text</a>

-------------------------------

Now Awesome Box should work. Hooray.